iT邦幫忙

2023 iThome 鐵人賽

DAY 5
0
SideProject30

人機控制介面之開發應用系列 第 5

String型別與Parse轉換測試-C#-主控台

  • 分享至 

  • xImage
  •  
string str = "765dc";
int x = int.Parse(str);
Console.WriteLine("x == {0}", x);

string型別內因有整數與英文字母,故無法通過Parse轉換成int(有符號整數),會出現765dc是錯誤格式的提醒
https://ithelp.ithome.com.tw/upload/images/20230917/20160744yPGyY3dBUy.png

string str = "765";
int x = int.Parse(str);
Console.WriteLine("x == {0}", x);

string型別內只有整數,所以str成功轉換為int
https://ithelp.ithome.com.tw/upload/images/20230917/20160744FRL6lgkRn1.png


上一篇
使用C#在Visual Studio下建立一個虛擬鍵盤
下一篇
Parse與TryParse的分別-C#-主控台
系列文
人機控制介面之開發應用37
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言